dbicDayView Send comments on this topic.
BeginInvoke(Delegate,Object[]) Method
See Also 
dbicPIM Assembly > Dbi.PIM Namespace > dbiAppointmentDialog Class > BeginInvoke Method : BeginInvoke(Delegate,Object[]) Method

method
A delegate to a method that takes parameters of the same number and type that are contained in the args parameter.
args
An array of objects to pass as arguments to the given method. This can be a null reference (Nothing in Visual Basic) if no arguments are needed.
Executes the specified delegate asynchronously with the specified arguments, on the thread that the control's underlying handle was created on.

Syntax

Visual Basic (Declaration) 
Overloads Public Function BeginInvoke( _
   ByVal method As Delegate, _
   ByVal ParamArray args() As Object _
) As IAsyncResult
C# 
public IAsyncResult BeginInvoke( 
   Delegate method,
   params object[] args
)

Parameters

method
A delegate to a method that takes parameters of the same number and type that are contained in the args parameter.
args
An array of objects to pass as arguments to the given method. This can be a null reference (Nothing in Visual Basic) if no arguments are needed.

Return Value

An System.IAsyncResult that represents the result of the System.Windows.Forms.Control.BeginInvoke(System.Delegate) operation.

Exceptions

ExceptionDescription
System.InvalidOperationExceptionNo appropriate window handle can be found.

Requirements

Target Platforms: Current Windows operating system with .NET 8.

See Also